.layout-wrapper {
    position: relative;
    max-width: 1440px;
    min-height: 100vh;
    height: auto;
    margin: 0 auto;    /* Đẩy xuống giữa + canh giữa ngang */
    width: 100%;
  }

  .notebook{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1050px;
    height: auto;
    z-index: 10px;
    margin-bottom:0px;
  }

  .tohru-honda{
    position: absolute;
    top: 430px;
    left: 980px;
    width: 285px;
    height: auto;
    z-index: 10px;
    margin-bottom:0px;
  }

  .nav-box-container{
    position: absolute;
    top: 130px;
    left: 974px;
    width: 70px;
    height: auto;
    z-index: 20px;
  }

  .nav-box {
    width:72px;
    padding: 5px;
    background-color: #ff98b1;
    margin-bottom: 5px; /* cách nhau 10px */
    border-radius: 0 5px 5px 0; /* chỉ bo góc trên phải và dưới phải */
    font-family:'Segoe UI';
    font-size: 15px;
    color:#ffffff;
    border: 2px solid #ffdae3;
    text-align: center;
  }

  .navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-box:hover {
    background-color: #ff98b1;
    border-color: #ffdae3;
    color: #ffdae3;  /* thay màu viền khi hover */
  }

  .language-switch {
    font-family:'Segoe UI';
    width: 72px;
    padding: 5px;
    background-color: #ffdae3;
    margin-bottom: 5px;
    border-radius: 0 5px 5px 0;
    font-size: 15px;
    color: #ff98b1;
    border: 2px solid #ff98b1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .language-switch:hover {
    
    font-family:'Segoe UI';
    background-color: #ff98b1;
    border-color: #ffdae3;
    color: #ffdae3;
  }

  .side-container {
    position: absolute;
    top: 130px;
    left: 80px;
    width: 220px;
    height: 513px;
    z-index: 30px;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    background: #fff;
    overflow-y: auto;
    
  }



  .main-container {
    position: absolute;
    top: 118px;
    left: 355px;
    width: 600px;
    height: 520px;
    z-index: 30px;
    border-top-right-radius:10px;
    border-bottom-right-radius:10px;
    background: #fff;
    overflow-y: auto;
    padding: 10px;
    padding-left: 0px;
  }



  /* Post box in main container */
  .post-box {
    margin-bottom: 40px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 8px;
  }

  .post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family:'Segoe UI';
  }

  .post-header h2 {
    margin: 0;
    font-size: 27px;
    color: hsl(0, 0%, 20%);
    font-family:'Segoe UI';
  }

  .post-date {
    font-size: 16px;
    color: #888;
    font-family:'Segoe UI';
  }

  .post-content {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-family:'Segoe UI';
  }

  .post-image {
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin: 10px 0;
    padding-left: 80px;
    margin-bottom: 0px;
    margin-top: 25px;
  }

  .post-summary {
    margin: 10px;
    padding: 8px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background: #f9f9f9;
    cursor: pointer;
    font-family:'Segoe UI';
  }

  .post-summary:hover {
    background-color: #eee;
  }

  .post-summary strong {
    color: hsl(345, 100%, 68%);
    font-size: 20px;
  }

  .search-box-wrapper {
    position: absolute;
    top: 75px; /* Bạn chỉnh vị trí phù hợp với layout */
    left: 330px;
    width: 300px;
    z-index: 40;
  }
  
  #searchBox {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid rgb(177, 177, 177);
    border-radius: 5px;
    background-color: white;
    color: black;
    font-family:'Segoe UI';
  }
  
  #searchBox::placeholder {
    color: #bbb;
  }

  .paint{
    position: absolute;
    top: 100px;
    left: 1040px;
    width: 220px;
    height: auto;
    z-index: 10px;
  }

  .gif{
    position: absolute;
    top: 121px;
    left: 1070px;
    width: 179px;
    height: 137px;
    z-index: 10px;
  }

  .gif img{
    position: relative;     /* Để bạn có thể dùng margin hoặc transform */
    left: 0px;           /* Dịch ảnh sang trái 100px */
    margin-left: 0px;
    margin-top: 0px; 
    width: auto;         /* Tùy ảnh bạn, có thể set kích thước tùy chỉnh */
    height: 137px;
    object-fit: cover;
  }